return (T) sourceValue;
} else {
// Convert --> Type
return convertToType(targetType, sourceValue);
}
}
result = (T) sourceValue;
} else {
// Convert --> Type
result = (T) convertToType(targetType, sourceValue);
}
return result;
}
/**